PluginAuthor.fromJson constructor

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

Implementation

factory PluginAuthor.fromJson(Map<String, dynamic> json) {
  return PluginAuthor(
    name: json['name'] as String? ?? '',
    email: json['email'] as String?,
    url: json['url'] as String?,
  );
}