toMap method

Map<String, dynamic> toMap ()
override

Implementation

Map<String, dynamic> toMap() {
  Map<String, dynamic> map = {};
  if (_abi != null) {
    map['abi'] = _abi;
  }
  if (_address != null) {
    map['address'] = _address;
  }
  if (_deploy_set != null) {
    map['deploy_set'] = _deploy_set;
  }
  if (_call_set != null) {
    map['call_set'] = _call_set;
  }
  if (_signer != null) {
    map['signer'] = _signer;
  }
  if (_processing_try_index != null) {
    map['processing_try_index'] = _processing_try_index;
  }
  return map;
}