fromGraphQLChatContactVersionNullableToDartChatContactVersionNullable function

ChatContactVersion? fromGraphQLChatContactVersionNullableToDartChatContactVersionNullable(
  1. String? v
)

Implementation

ChatContactVersion?
fromGraphQLChatContactVersionNullableToDartChatContactVersionNullable(
  String? v,
) => v == null ? null : ChatContactVersion(v);