DatastoreActivity.fromJson constructor

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

Implementation

factory DatastoreActivity.fromJson(Map<String, dynamic> json) {
  return DatastoreActivity(
    datastoreName: json['datastoreName'] as String,
    name: json['name'] as String,
  );
}