BatchCreateVariableError.fromJson constructor

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

Implementation

factory BatchCreateVariableError.fromJson(Map<String, dynamic> json) {
  return BatchCreateVariableError(
    code: json['code'] as int?,
    message: json['message'] as String?,
    name: json['name'] as String?,
  );
}