SubModule.fromJson constructor

SubModule.fromJson(
  1. Map<String, dynamic> json
)

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?,
  );
}