SubModule.fromJson constructor
Implementation
factory SubModule.fromJson(Map<String, dynamic> json) {
return SubModule(
absolutePath: json['absolutePath'] as String?,
commitId: json['commitId'] as String?,
relativePath: json['relativePath'] as String?,
);
}