NewsStoreDto constructor

NewsStoreDto(
  1. {required String id,
  2. String? name}
)

Implementation

NewsStoreDto({
  required this.id,
  this.name,
});