ResponseResult.fromJson constructor

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

Creates a ResponseResult from JSON.

Implementation

factory ResponseResult.fromJson(Map<String, dynamic> json) {
  return ResponseResult(result: json['Result']?.toString());
}