copyWith method

GetJsonValue copyWith({
  1. String? json,
})

Implementation

GetJsonValue copyWith({
  String? json,
}) =>
    GetJsonValue(
      json: json ?? this.json,
    );