isPlatformAdmin function

  1. @riverpod
Future<bool> isPlatformAdmin(
  1. Ref<Object?> ref
)

Implementation

@riverpod
Future<bool> isPlatformAdmin(Ref ref) async {
  final ds = ref.watch(orgDatasourceProvider);
  return ds.isPlatformAdmin();
}