toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final defaultBranch = this.defaultBranch;
  final gitignores = this.gitignores;
  final license = this.license;
  final readme = this.readme;
  return {
    'defaultBranch': ?defaultBranch,
    'gitignores': ?gitignores,
    'license': ?license,
    'readme': ?readme,
  };
}