toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final activeUsers = this.activeUsers;
  final failedExecutions = this.failedExecutions;
  final totalExecutions = this.totalExecutions;
  return {
    'activeUsers': ?activeUsers,
    'failedExecutions': ?failedExecutions,
    'totalExecutions': ?totalExecutions,
  };
}