toMap method

Map<String, Object> toMap()

Implementation

Map<String, Object> toMap() => <String, Object>{
      'identifier': identifier,
      'actions': actions
          .map((e) => e.toMap()) // ignore: always_specify_types
          .toList(),
      'options': options
          .map((e) => 1 << e.index) // ignore: always_specify_types
          .toList(),
    };