RestartPolicy class

Constructors

RestartPolicy({RestartPolicyNameEnum? name, int? maximumRetryCount})
Returns a new RestartPolicy instance.

Properties

hashCode int
The hash code for this object.
no setteroverride
maximumRetryCount int?
If on-failure is used, the number of times to retry before giving up.
getter/setter pair
name RestartPolicyNameEnum?
  • Empty string means not to restart - no Do not automatically restart - always Always restart - unless-stopped Restart always except when the user has manually stopped the container - on-failure Restart only when the container exit code is non-zero
  • getter/setter pair
    runtimeType Type
    A representation of the runtime type of the object.
    no setterinherited

    Methods

    noSuchMethod(Invocation invocation) → dynamic
    Invoked when a nonexistent method or property is accessed.
    inherited
    toJson() Map<String, dynamic>
    toString() String
    A string representation of this object.
    override

    Operators

    operator ==(Object other) bool
    The equality operator.
    override

    Static Methods

    fromJson(dynamic value) RestartPolicy?
    Returns a new RestartPolicy instance and imports its values from value if it's a Map, null otherwise.
    listFromJson(dynamic json, {bool growable = false}) List<RestartPolicy>
    mapFromJson(dynamic json) Map<String, RestartPolicy>
    mapListFromJson(dynamic json, {bool growable = false}) Map<String, List<RestartPolicy>>

    Constants

    requiredKeys → const Set<String>
    The list of required keys that must be present in a JSON.