fromDynamic static method
Builds the builder from a Map-like dynamic structure. This expects the JSON format to be of the following structure:
{
"curve": <Curve>,
"duration": <int; millis>,
"onEnd": <VoidCallback>,
"padding": <EdgeInsetsGeometry>,
}
As a note, the Curve and VoidCallback cannot be decoded via JSON. Instead, the only way to bind those values to the builder is to use a function or a variable reference via the JsonWidgetRegistry.
Implementation
static JsonAnimatedPaddingBuilder? fromDynamic(
dynamic map, {
JsonWidgetRegistry? registry,
}) {
JsonAnimatedPaddingBuilder? result;
if (map != null) {
result = JsonAnimatedPaddingBuilder(
curve: map['curve'] ?? Curves.linear,
duration: JsonClass.parseDurationFromMillis(
map['duration'],
)!,
onEnd: map['onEnd'],
padding: ThemeDecoder.decodeEdgeInsetsGeometry(
map['padding'],
validate: false,
)!,
);
}
return result;
}