copyWith method

LanguagePackStrings copyWith({
  1. List<LanguagePackString>? strings,
})

Implementation

LanguagePackStrings copyWith({List<LanguagePackString>? strings}) =>
    LanguagePackStrings(strings: strings ?? this.strings);