fromJson static method
Inherited by: PageBlockVerticalAlignmentBottom PageBlockVerticalAlignmentMiddle PageBlockVerticalAlignmentTop
Implementation
static PageBlockVerticalAlignmentMiddle? fromJson(
Map<String, dynamic>? json,
) {
if (json == null) {
return null;
}
return const PageBlockVerticalAlignmentMiddle();
}