CreateApplicationResponse.fromJson constructor

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

Implementation

factory CreateApplicationResponse.fromJson(Map<String, dynamic> json) {
  return CreateApplicationResponse(
    configurationId: json['configurationId'] as String?,
  );
}