Response.fromMap constructor

Response.fromMap(
  1. Map<String, dynamic>? json
)

Implementation

Response.fromMap(Map<String, dynamic>? json) {
  if (json != null) {
    success = json['success'];
  }
}