toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final config = this.config;
  final displayName = this.displayName;
  final id = this.id;
  final moduleEnablementState = this.moduleEnablementState;
  return {
    'config': ?config,
    'displayName': ?displayName,
    'id': ?id,
    'moduleEnablementState': ?moduleEnablementState,
  };
}