LoginLinkCreateOptions.fromJson constructor

LoginLinkCreateOptions.fromJson(
  1. Object? json
)

Implementation

factory LoginLinkCreateOptions.fromJson(Object? json) {
  final map = (json as Map).cast<String, Object?>();
  return LoginLinkCreateOptions(
      expand: map['expand'] == null
          ? null
          : (map['expand'] as List<Object?>)
              .map((el) => (el as String))
              .toList());
}