Replica.fromJson constructor

Replica.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory Replica.fromJson(Map<String, dynamic> json) {
  return Replica(
    regionName: json['RegionName'] as String?,
  );
}