copyWith method

AndroidFcmOptions copyWith({
  1. String? analyticsLabel,
})

Implementation

AndroidFcmOptions copyWith({
  String? analyticsLabel,
}) =>
    AndroidFcmOptions(
      analyticsLabel: analyticsLabel ?? this.analyticsLabel,
    );