Sheet.fromJson constructor

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

Implementation

factory Sheet.fromJson(Map<String, dynamic> json) {
  return Sheet(
    name: json['Name'] as String?,
    sheetId: json['SheetId'] as String?,
  );
}