copyWith method

AndroidArg copyWith({
  1. String? longLabel,
  2. String? uri,
  3. bool? enabled,
})

Implementation

AndroidArg copyWith({
  String? longLabel,
  String? uri,
  bool? enabled,
}) =>
    AndroidArg(
      longLabel: longLabel ?? this.longLabel,
      uri: uri ?? this.uri,
    );