StyleForText.fromJson constructor

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

Implementation

StyleForText.fromJson(Map<String, dynamic> json) {
  typography = json['typography'] != null
      ? new Typography.fromJson(json['typography'])
      : null;
}