DeleteFeaturestoreRequest.fromJson constructor

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

Implementation

factory DeleteFeaturestoreRequest.fromJson(Map<String, dynamic> json) {
  return DeleteFeaturestoreRequest(
    name: json['name'] ?? '',
    force: json['force'] ?? false,
  );
}