TableStructure.fromJson constructor
Implementation
factory TableStructure.fromJson(Map<String, dynamic> json) => TableStructure(
key: json['key'] as String? ?? '',
title: json['title'] as String? ?? '',
isShowing: json['isShowing'] as bool? ?? true,
isDisable: json['isDisable'] as bool? ?? false,
columnFlex: json['columnFlex'] as double? ?? 1,
);