copyWith method

Implementation

ShareOptionResponseModel copyWith(
    {String? name, String? id, enums.ShareOptionResponseModelType? type}) {
  return ShareOptionResponseModel(
      name: name ?? this.name, id: id ?? this.id, type: type ?? this.type);
}