copyWith method

ReportAuthenticationCodeMissing copyWith({
  1. String? mobileNetworkCode,
})

Implementation

ReportAuthenticationCodeMissing copyWith({String? mobileNetworkCode}) =>
    ReportAuthenticationCodeMissing(
      mobileNetworkCode: mobileNetworkCode ?? this.mobileNetworkCode,
    );