ResultOk.fromJson constructor Null safety

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

Implementation

ResultOk.fromJson(Map<String, dynamic> json) {
  result = json['result'];
}