copyWith method

TranslatedString copyWith (
  1. void updates(
    1. TranslatedString
    )
)

Implementation

TranslatedString copyWith(void Function(TranslatedString) updates) => super.copyWith((message) => updates(message as TranslatedString));