toMap method
override
Implementation
Map<String, dynamic> toMap() {
Map<String, dynamic> map = {};
if (_in_msg_fwd_fee != null) {
map['in_msg_fwd_fee'] = _in_msg_fwd_fee;
}
if (_storage_fee != null) {
map['storage_fee'] = _storage_fee;
}
if (_gas_fee != null) {
map['gas_fee'] = _gas_fee;
}
if (_out_msgs_fwd_fee != null) {
map['out_msgs_fwd_fee'] = _out_msgs_fwd_fee;
}
if (_total_account_fees != null) {
map['total_account_fees'] = _total_account_fees;
}
if (_total_output != null) {
map['total_output'] = _total_output;
}
return map;
}