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