BatchGetVariableError.fromJson constructor

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

Implementation

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