toMap method
override
Implementation
Map<String, dynamic> toMap() {
Map<String, dynamic> map = {};
if (_tvc != null) {
map['tvc'] = _tvc;
}
if (_public_key != null) {
map['public_key'] = _public_key;
}
if (_init_params != null) {
map['init_params'] = _init_params;
}
map['type'] = _type;
return map;
}