CreateFunctionResponse.fromJson constructor

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

Implementation

factory CreateFunctionResponse.fromJson(Map<String, dynamic> json) {
  return CreateFunctionResponse(
    functionConfiguration: json['functionConfiguration'] != null
        ? FunctionConfiguration.fromJson(
            json['functionConfiguration'] as Map<String, dynamic>)
        : null,
  );
}