toMap method
override
Implementation
Map<String, dynamic> toMap() {
Map<String, dynamic> map = {};
if (_message != null) {
map['message'] = _message;
}
if (_abi != null) {
map['abi'] = _abi;
}
map['type'] = _type;
return map;
}