copyWith method

IosArg copyWith({
  1. String? subtitle,
})

Implementation

IosArg copyWith({
  String? subtitle,
}) =>
    IosArg(
      subtitle: subtitle ?? this.subtitle,
    );