copyWith method

GetJsonString copyWith({
  1. JsonValue? jsonValue,
})

Implementation

GetJsonString copyWith({
  JsonValue? jsonValue,
}) => GetJsonString(
  jsonValue: jsonValue ?? this.jsonValue,
);