DeleteFeatureOnlineStoreRequest.fromJson constructor

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

Implementation

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