GlamourTableStyle.fromJson constructor

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

Implementation

factory GlamourTableStyle.fromJson(Map<String, dynamic> json) {
  return GlamourTableStyle(
    style: GlamourBlockStyle.fromJson(json),
    centerSeparator: json['center_separator'] as String?,
    columnSeparator: json['column_separator'] as String?,
    rowSeparator: json['row_separator'] as String?,
  );
}