Response.fromMap constructor

Response.fromMap(
  1. Map<String, Object?> obj
)

Implementation

Response.fromMap(super.obj)
    : body = obj['body'],
      command = obj['command'] as String,
      message = obj['message'] as String?,
      requestSeq = obj['request_seq'] as int,
      success = obj['success'] as bool,
      super.fromMap();