toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final active = this.active;
  final displayName = this.displayName;
  final name = this.name;
  final reportingDimensionId = this.reportingDimensionId;
  return {
    'active': ?active,
    'displayName': ?displayName,
    'name': ?name,
    'reportingDimensionId': ?reportingDimensionId,
  };
}