toMap method
override
Implementation
Map<String, dynamic> toMap() {
Map<String, dynamic> map = {};
if (_boc != null) {
map['boc'] = _boc;
}
if (_unlimited_balance != null) {
map['unlimited_balance'] = _unlimited_balance;
}
map['type'] = _type;
return map;
}