toLayoutStruct method

  1. @override
Map<String, dynamic> toLayoutStruct()
override

Converts the current object to a layout-friendly structure (Map format).

Implementation

@override
Map<String, dynamic> toLayoutStruct() {
  return {
    "publicKeys": publicKeys.map((e) => e.toLayoutStruct()).toList(),
    "threshold": threshold
  };
}