UsernameConfigurationType.fromJson constructor

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

Implementation

factory UsernameConfigurationType.fromJson(Map<String, dynamic> json) {
  return UsernameConfigurationType(
    caseSensitive: json['CaseSensitive'] as bool,
  );
}