fromJson static method

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

Implementation

static StatementRef? fromJson(Map<String, dynamic>? json) {
  if (json == null) {
    return null;
  }

  return StatementRef(
    id: json['id'],
  );
}