TGetTvcAppsBody.fromJson constructor

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

Implementation

factory TGetTvcAppsBody.fromJson(Map<String, dynamic> json) {
  final _organizationId = json['organizationId'] as String?;
  return TGetTvcAppsBody(
    organizationId: _organizationId,
  );
}