toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final environmentVariable = this.environmentVariable;
  final filePath = this.filePath;
  final status = this.status;
  final type = this.type;
  return {
    'environmentVariable': ?environmentVariable,
    'filePath': ?filePath,
    'status': ?status,
    'type': ?type,
  };
}