GutterStyle.fromJson constructor

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

Implementation

factory GutterStyle.fromJson(Map<String, dynamic> json) {
  return GutterStyle(
    show: json['Show'] as bool?,
  );
}