BorderStyle.fromJson constructor

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

Implementation

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